projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fdcb86
)
(check_pure_size): Only output a warning.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 22 Mar 2002 22:53:23 +0000
(22:53 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 22 Mar 2002 22:53:23 +0000
(22:53 +0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index 4a276a4cc12b736fc213275a7440e6877691a392..a6aacd704beacc5476ce45446803874d7ecd44af 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-3843,8
+3843,8
@@
void
check_pure_size ()
{
if (pure_bytes_used_before_overflow)
-
error
("Pure Lisp storage overflow (approx. %d bytes needed)",
- (int) (pure_bytes_used + pure_bytes_used_before_overflow));
+
message
("Pure Lisp storage overflow (approx. %d bytes needed)",
+
(int) (pure_bytes_used + pure_bytes_used_before_overflow));
}